![]() ![]() |
6.4:H106103 If the web program objects do not function, make sure contents still accessible.Improper designWhen the program no longer functions, web contents were not delivered. Improper design:
<APPLET code="ticker.class" codebase="script/" width="80%" height="40">
<PARAM name="bgco" value="105,0,0">
<PARAM name="speed" value="3">
<PARAM name="msg" value="web accessibility invites you to help those who are visually disabled!">
<PARAM name="txtco" value="255,255,255">
</APPLET>
End of example Proper demonstrationWith the inclusion of text, when programs are no longer functional, the web contents are still deliverable. Proper example:
<APPLET code="ticker.class" codebase="script/"
alt="web accessibility invites you to help those who are visually disabled!" width="80%" height="40">
<PARAM name="bgco" value="105,0,0">
<PARAM name="speed" value="3">
<PARAM name="msg" value="web accessibility invites you to help those who are visually disabled!">
<PARAM name="txtco" value="255,255,255">
</APPLET>
End of example |